Package org.jruby.ext.ffi

Source Code of org.jruby.ext.ffi.TypeSizeMapper

package org.jruby.ext.ffi;

import org.jruby.RubyHash;
import org.jruby.RubyModule;
import org.jruby.runtime.ThreadContext;
import org.jruby.runtime.builtin.IRubyObject;

final class TypeSizeMapper {

    private static final int[] sizes;
    static {
        NativeType[] types = NativeType.values();
        int[] sz = new int[types.length];
        for (int i = 0; i < sz.length; ++i) {
            switch (types[i]) {
                case CHAR:
                case UCHAR:
                    sz[types[i].ordinal()] = 1;
                    break;
                case SHORT:
                case USHORT:
                    sz[types[i].ordinal()] = 2;
                    break;
                case INT:
                case UINT:
                case FLOAT:
                    sz[types[i].ordinal()] = 4;
                    break;
                case LONG_LONG:
                case ULONG_LONG:
                case DOUBLE:
                    sz[types[i].ordinal()] = 8;
                    break;
                case LONG:
                case ULONG:
                    sz[types[i].ordinal()] = Platform.getPlatform().longSize() >> 3;
                    break;
                case POINTER:
                    sz[types[i].ordinal()] = Platform.getPlatform().addressSize() >> 3;
                    break;
                default:
                    sz[types[i].ordinal()] = -1;
                    break;
            }
        }
        sizes = sz;
    }

    private static final int getTypeSize(IRubyObject type) {
        int index = NativeType.valueOf(type).ordinal();
        return index >= 0 && index < sizes.length ? sizes[index] : -1;
    }

    /**
     * Calls up to ruby code to calculate the size of the tpe
     *
     * @param context The current thread context
     * @param ffi The FFI ruby module
     * @param sizeArg The name of the type
     * @return size of the type
     */
    private static final int callTypeSize(ThreadContext context, RubyModule ffi, IRubyObject sizeArg) {
        return getTypeSize(ffi.callMethod(context, "type_size", sizeArg));
    }

    public static final int getTypeSize(ThreadContext context, IRubyObject sizeArg) {
        final RubyModule ffi = context.getRuntime().fastGetModule("FFI");
        final IRubyObject typeDefs = ffi.fastFetchConstant("TypeDefs");
        final IRubyObject type = ((RubyHash) typeDefs).fastARef(sizeArg);
        final int size = type != null && !type.isNil() ? getTypeSize(type) : 0;
        return size > 0 ? size : callTypeSize(context, ffi, sizeArg);
    }
}
TOP

Related Classes of org.jruby.ext.ffi.TypeSizeMapper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.